home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-12-19 | 1.2 KB | 34 lines |
- #
- # This is the make file for the bool_lib library for Borland C++ 2.0.
- #
- # Only large model is created here.
- #
- # Gershon Elber, Jun 1989
- #
-
- # Works only on TC++ 1.0 make and up - swap out make before invoking command.
- .SWAP
-
- # Get the destination directories:
- !include "..\makeflag.tc"
-
- OBJS = adjacncy.obj bool-hi.obj bool1low.obj bool2low.obj bool-2d.obj
-
- POBJS = +adjacncy.obj +bool-hi.obj +bool1low.obj +bool2low.obj +bool-2d.obj
-
- bool_lib.lib: $(OBJS)
- del bool_lib.lib
- tlib /c bool_lib.lib @&&!
- $(POBJS), bool_lib.lst
- !
-
- install: bool_lib.lib
- copy bool_lib.lib $(LIB_DIR)
-
- # Dependencies starts here - do not touch, generated automatically.
- adjacncy.obj: ../include/irit_sm.h ../include/allocate.h bool_loc.h
- bool-2d.obj: ../include/irit_sm.h ../include/allocate.h bool_loc.h ../include/convex.h ../include/geomat3d.h ../include/intrnrml.h
- bool-hi.obj: ../include/irit_sm.h ../include/allocate.h ../include/attribut.h bool_loc.h ../include/convex.h ../include/poly_cln.h ../include/geomat3d.h
- bool1low.obj: ../include/irit_sm.h ../include/allocate.h bool_loc.h ../include/geomat3d.h
- bool2low.obj: ../include/irit_sm.h ../include/allocate.h bool_loc.h ../include/convex.h ../include/geomat3d.h ../include/intrnrml.h
-